-
-
Notifications
You must be signed in to change notification settings - Fork 5.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add icechunk recipe #28803
base: main
Are you sure you want to change the base?
add icechunk recipe #28803
Conversation
Hi! This is the staged-recipes linter and your PR looks excellent! 🚀 |
Hi! This is the friendly automated conda-forge-linting service. I just wanted to let you know that I linted all conda-recipes in your PR ( I do have some suggestions for making it better though... For recipes/icechunk/meta.yaml:
This message was generated by GitHub Actions workflow run https://github.com/conda-forge/conda-forge-webservices/actions/runs/12702036546. Examine the logs at this URL for more detail. |
Hi! This is the friendly automated conda-forge-linting service. I wanted to let you know that I linted all conda-recipes in your PR ( Here's what I've got... For recipes/icechunk/meta.yaml:
This message was generated by GitHub Actions workflow run https://github.com/conda-forge/conda-forge-webservices/actions/runs/12702243174. Examine the logs at this URL for more detail. |
Hi! This is the friendly automated conda-forge-linting service. I just wanted to let you know that I linted all conda-recipes in your PR ( |
@conda-forge/staged-recipes and/or @conda-forge/help-python / @conda-forge/help-rust, this is ready for review/merge |
To help direct your pull request to the best reviewers, please mention a topic-specifc team if your recipe matches any of the following: conda-forge/help-c-cpp, conda-forge/help-cdts, conda-forge/help-go, conda-forge/help-java, conda-forge/help-julia, conda-forge/help-nodejs, conda-forge/help-perl, conda-forge/help-python, conda-forge/help-python-c, conda-forge/help-r, conda-forge/help-ruby,or conda-forge/help-rust. Thanks! |
thank you for the feedback, @ocefpaf |
recipes/icechunk/meta.yaml
Outdated
@@ -0,0 +1,54 @@ | |||
{% set name = "icechunk" %} | |||
{% set version = "0.1.0a10" %} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This one falls under https://github.com/conda-forge/cfep/blob/main/cfep-05.md
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unless i'm missing something, this guide doesn't seem to have any examples of how to apply this to packages in staged-recipes
before they have a feedstock repo.
any tips on how to do this?
{% set version = "0.1.0-alpha.10" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://github.com/earth-mover/icechunk/archive/refs/tags/icechunk-v{{ version }}.tar.gz |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ocefpaf, the following results in an error
^^^^^^^^^^^^^^
File "/opt/conda/lib/python3.12/site-packages/conda_build/render.py", line 981, in render_recipe
m.config.compute_build_id(m.name(), m.version(), reset=reset_build_id)
^^^^^^^^^^^
File "/opt/conda/lib/python3.12/site-packages/conda_build/metadata.py", line 1533, in version
check_bad_chrs(version, "package/version")
File "/opt/conda/lib/python3.12/site-packages/conda_build/metadata.py", line 776, in check_bad_chrs
raise CondaBuildUserError(
conda_build.exceptions.CondaBuildUserError: Bad character(s) (-) in package/version: 0.1.0-alpha.10.
do you have any recommendations on how to avoid this issue?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is that version in a valid PEP440 form? Also, you will need to follow CFEP-05 here or release/ask a stable version upstream.
Checklist
url
) rather than a repo (e.g.git_url
) is used in your recipe (see here for more details).